home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1994 / MacHack 1994.toast / MacHack™ 1987-1994 / MacHack™ '87 / Source ƒ.sea / Source ƒ / emacs source ƒ / EPATH.H < prev    next >
Encoding:
Text File  |  1992-06-28  |  666 b   |  52 lines  |  [TEXT/MARC]

  1. /*    PATH:    This file contains certain info needed to locate the
  2.         MicroEMACS files on a system dependant basis.
  3.  
  4.                                     */
  5.  
  6. /*    possible names and paths of help files under different OSs    */
  7.  
  8. char *pathname[] =
  9.  
  10. #if    AMIGA
  11. {
  12.     ".emacsrc",
  13.     "emacs.hlp",
  14.     "",
  15.     ":c/",
  16.     ":t/"
  17. };
  18. #endif
  19.  
  20. #if    MSDOS
  21. {
  22.     "emacs.rc",
  23.     "emacs.hlp",
  24.     "\\sys\\public\\",
  25.     "\\usr\\bin\\",
  26.     "\\bin\\",
  27.     "\\",
  28.     ""
  29. };
  30. #endif
  31.  
  32. #if    V7 | BSD | USG
  33. {
  34.     ".emacsrc",
  35.     "emacs.hlp",
  36.     "/usr/local/",
  37.     "/usr/lib/",
  38.     ""
  39. };
  40. #endif
  41.  
  42. #if    VMS
  43. {
  44.     "emacs.rc",
  45.     "emacs.hlp",
  46.     "",
  47.     "sys$sysdevice:[vmstools]"
  48. };
  49. #endif
  50.  
  51. #define    NPNAMES    (sizeof(pathname)/sizeof(char *))
  52.